home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
- //
- // "test-3.pov" - Test the little car.
- //
- // Created by: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
-
- #include "colors.inc"
- #include "textures.inc"
- #include "golds.inc"
- #include "woods.inc"
- #default { finish { Shiny } }
-
- #declare Which_Camera = 2
-
- #if ( Which_Camera = 1 )
- camera { location < 12*12, 4*12, 3*12 >
- look_at < 0, 1*12, 6*12 > }
- #end
-
- #if ( Which_Camera = 2 )
- camera { location < 60, 3*12, -5*12 >
- look_at < 30, 1*12, 6*12 > }
- #end
-
- light_source { < -1000, 1000, -1000 > color White }
- light_source { < 0, 1000, -1000 > color White }
- light_source { < 1000, 1000, -1000 > color White }
- light_source { < 1000, 60, 144 > color White }
- light_source { < 0, 20, -144 > color White }
-
- background { White }
-
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
- //
- // Load the include file and show the car.
-
- #include "car-1.inc"
-
- object { One_Mysterious_Car }
-
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-